-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Use synthetic recovery source by default if synthetic source is enabled #119110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use synthetic recovery source by default if synthetic source is enabled #119110
Conversation
This reverts commit 7bcd751.
| Property.Final | ||
| ); | ||
|
|
||
| /** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is just a result of reordering settings in such a way that static initialization happens in the right order.
x-pack/plugin/logsdb/build.gradle
Outdated
| tasks.named("yamlRestTest") { | ||
| if (buildParams.isSnapshotBuild() == false) { | ||
| systemProperty 'tests.rest.blacklist', [ | ||
| "resources/rest-api-spec/test/60_synthetic_source_recovery.yml" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at other usages, I think this should just be: '60_synthetic_source_recovery/*'?
|
|
💔 Backport failed
You can use sqren/backport to manually backport by running |
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
…ed (elastic#119110) We experimented with using synthetic source for recovery and observed quite positive impact on indexing throughput by means of our nightly Rally benchmarks. As a result, here we enable it by default when synthetic source is used. To be more precise, if `index.mapping.source.mode` setting is `synthetic` we enable recovery source by means of synthetic source. Moreover, enabling synthetic source recovery is done behind a feature flag. That would allow us to enable it in snapshot builds which in turn will allow us to see performance results in Rally nightly benchmarks. (cherry picked from commit 6a52675)
… enabled (#119110) (#121760) * Use synthetic recovery source by default if synthetic source is enabled (#119110) We experimented with using synthetic source for recovery and observed quite positive impact on indexing throughput by means of our nightly Rally benchmarks. As a result, here we enable it by default when synthetic source is used. To be more precise, if `index.mapping.source.mode` setting is `synthetic` we enable recovery source by means of synthetic source. Moreover, enabling synthetic source recovery is done behind a feature flag. That would allow us to enable it in snapshot builds which in turn will allow us to see performance results in Rally nightly benchmarks.
We experimented with using synthetic source for recovery and observed quite positive impact
on indexing throughput by means of our nightly Rally benchmarks. As a result, here we enable
it by default when synthetic source is used. To be more precise, if
index.mapping.source.modesetting is
syntheticwe enable recovery source by means of synthetic source.Moreover, enabling synthetic source recovery is done behind a feature flag. That would allow us
to enable it in snapshot builds which in turn will allow us to see performance results in Rally nightly
benchmarks.
This PR needs a refactoring done in #120096.